home *** CD-ROM | disk | FTP | other *** search
/ Champak 109 / Vol 109.iso / games / rush_hou.swf / scripts / %3Cdefault package%3E / FComboBoxItemSymbol.as < prev    next >
Encoding:
Text File  |  2008-11-12  |  426 b   |  16 lines

  1. function FComboBoxItemClass()
  2. {
  3.    this.init();
  4. }
  5. FComboBoxItemClass.prototype = new FSelectableItemClass();
  6. Object.registerClass("FComboBoxItemSymbol",FComboBoxItemClass);
  7. FComboBoxItemClass.prototype.setSize = function(w, h)
  8. {
  9.    var _loc1_ = this;
  10.    super.setSize(w,h);
  11.    _loc1_.highlight_mc.onRollOver = function()
  12.    {
  13.       this.controller.controller.selectionHandler(this.controller.itemNum);
  14.    };
  15. };
  16.